/**
 * Stripe Pro - Buttons (Authentic Style)
 * 
 * Stripe uses solid-fill pills with a small chevron (›).
 * Two variants: Primary (brand purple) and Dark (downriver).
 */

.sl-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: var(--sl-transition-base);
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.4;
}

/* The Stripe chevron arrow */
.sl-btn .btn-arrow {
    display: inline-flex;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.sl-btn:hover .btn-arrow {
    transform: translateX(2px);
}

/* Primary: Solid brand purple fill */
.sl-btn-primary {
    background: var(--sl-color-brand);
    color: #ffffff;
    box-shadow: var(--sl-shadow-button);
}

.sl-btn-primary:hover {
    background: var(--sl-color-brand-dark);
    transform: translateY(-1px);
    box-shadow: var(--sl-shadow-button-hover);
}

.sl-btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Dark: Solid downriver fill (hero variant) */
.sl-btn-dark {
    background: var(--sl-color-downriver);
    color: #ffffff;
    box-shadow: var(--sl-shadow-button);
}

.sl-btn-dark:hover {
    background: #0e3356;
    transform: translateY(-1px);
    box-shadow: var(--sl-shadow-button-hover);
}

/* Secondary: Subtle background and border */
.sl-btn-secondary {
    background: #f1f5f9;
    color: var(--sl-color-downriver);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.sl-btn-secondary:hover {
    background: #e2e8f0;
    border-color: rgba(0, 0, 0, 0.12);
}

/* Ghost: Text-only link style (secondary) */
.sl-btn-ghost {
    background: transparent;
    color: var(--sl-color-brand);
    padding: 10px 4px;
    box-shadow: none;
}

.sl-btn-ghost:hover {
    color: var(--sl-color-brand-dark);
}

/* White Ghost: For use on dark/gradient backgrounds */
.sl-btn-ghost-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 4px;
    box-shadow: none;
}

.sl-btn-ghost-white:hover {
    color: #ffffff;
}